func runtime.overLoadFactor

10 uses

	runtime (current package)
		map.go#L333: 	for overLoadFactor(hint, B) {
		map.go#L694: 	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
		map.go#L1144: 	if !overLoadFactor(h.count+1, h.B) {
		map.go#L1183: func overLoadFactor(count int, B uint8) bool {
		map.go#L1677: 	if overLoadFactor(hint, src.B) {
		map_fast32.go#L176: 	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
		map_fast32.go#L275: 	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
		map_fast64.go#L176: 	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
		map_fast64.go#L277: 	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
		map_faststr.go#L295: 	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {